home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / DOS / FILECOPY / ELIM.ZIP / DEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-02-17  |  526 b   |  28 lines

  1. echo off
  2. CREATE A B
  3. echo 
  4. echo You have just created a zero-byte file on your disk called
  5. echo A B.  We shall now try to delete that file by using the
  6. echo command
  7. echo
  8. echo DEL A B
  9. echo
  10. pause
  11. cls
  12. DEL A B
  13. echo
  14. echo Notice the response.  A DIR operation reveals the file is
  15. echo still there:
  16. DIR A*
  17. echo
  18. echo Now we shall use ELIM to delete this file, using the command
  19. echo 
  20. echo ELIM A B
  21. echo
  22. pause
  23. cls
  24. ELIM A B
  25. echo
  26. echo Now the file A B is no longer on your disk. Here's the DIR:
  27. DIR A*
  28.